home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / answers / comp / signature_finger_faq < prev    next >
Internet Message Format  |  1994-03-29  |  10KB

  1. Path: bloom-beacon.mit.edu!hookup!news.sprintlink.net!connected.com!connected.com!nancym
  2. From: Nancy McGough <nancym@ii.com>
  3. Newsgroups: news.newusers.questions,comp.mail.misc,comp.unix.questions,alt.internet.services,comp.answers,alt.answers,news.answers
  4. Subject: Signature and Finger FAQ
  5. Followup-To: news.newusers.questions,comp.mail.misc,comp.unix.questions,alt.internet.services
  6. Date: 29 Mar 1994 20:50:21 -0800
  7. Organization: Infinite Ink, Seattle, Washington, USA
  8. Lines: 229
  9. Sender: nancym@goshen.connected.com
  10. Approved: news-answers-request@mit.edu
  11. Message-ID: <nancym.765002830@connected.com>
  12. Reply-To: Nancy McGough <nancym@ii.com>
  13. NNTP-Posting-Host: goshen.connected.com
  14. X-Newsreader: NN [version 6.4.18]
  15. Xref: bloom-beacon.mit.edu news.newusers.questions:15966 comp.mail.misc:6966 comp.unix.questions:23796 alt.internet.services:19250 comp.answers:4350 alt.answers:2267 news.answers:17002
  16.  
  17. Archive-name: signature_finger_faq
  18.  
  19.  
  20. THE SIGNATURE AND FINGER FREQUENTLY ASKED QUESTIONS
  21. ===================================================
  22.  
  23. Your signature and finger files are two ways you can tell people more
  24. about yourself.  This article describes how to set these up on Unix
  25. systems.  The following subjects are covered:
  26.    
  27.       *  Automatic Signature - General Instructions
  28.       *  Automatic Signature - Specific Instructions for Pine
  29.       *  Automatic Signature - Specific Instructions for Elm
  30.       *  Automatic Signature - Specific Instructions for NN
  31.       *  Troubleshooting Signature Problems
  32.       *  Changing Your Default Finger Info: chfn
  33.       *  Adding More to Your Finger Info: .plan & .project
  34.       *  Finding Out Who Fingers You
  35.       *  Contributing to this FAQ
  36.  
  37. This article is in digest format so you may be able to use your newsreader 
  38. or mailer to easily skip to a subject you're interested in.  In nn you can 
  39. type G% to have each subject presented on a submenu.  In trn (and its 
  40. relatives like rn) you can type ^G (CTRL and G key pressed simultaneously) 
  41. to skip to the next line that begins with ``Subject: ''.  (Please mail me 
  42. commands that other newsreaders and mailers have for efficient browsing of 
  43. digests.)
  44.  
  45.  
  46. Date: 29 Mar 1994 00:00:00 GMT
  47. From: Nancy McGough <nancym@ii.com>
  48. Subject: Automatic Signature - General Instructions
  49.  
  50. Q: How can I have a signature automatically appended to my news articles 
  51.    and mail messages?
  52.  
  53. A: The answer depends on your newsreader and mailer but the following 
  54.    procedure works for many Unix newsreaders and mailers.
  55.  
  56.  
  57. Type...                 In order to...
  58. -------                 --------------
  59. cd                      Go to your home directory.
  60.  
  61. pico .signature         Use the pico editor to create a .signature file.
  62.                         (Replace "pico" with your favorite editor.)
  63.  
  64. <your signature>        Note that most systems require your sig to be <= 4 
  65.                         lines.  And it's good netiquette to make it as
  66.                         short as possible (I like 1 line or less!).
  67.  
  68. chmod 644 .signature    Make .signature readable by all.
  69.  
  70. ls -l .signature        Check the permission: it should say -rw-r--r--
  71.  
  72. chmod +x .              Make home directory searchable by all.
  73.  
  74. ls -ld .                Check permission of home dir: it should say drwx?-x?-x
  75.                         The ?'s may be r's or hyphens or one of each (i.e., 
  76.                         drwx--x--x, drwxr-xr-x, drwxr-x--x, drwx--xr-x).
  77.  
  78. ls -la                  Check permission of files in home dir.  If any are
  79.                         world or group writable (?????w??w?) you'll probably
  80.                         want to change this by doing a "chmod go-w FileName".
  81.                         For more info on changing permissions see chmod
  82.                         man pages.
  83.  
  84. Next if you use pine, elm, or nn follow the additional instructions described
  85. below.  After you've set everything up use your mailer to mail a test message 
  86. to yourself, and your newsreader and/or news poster (such as nnpost or Pnews) 
  87. to post an article to a test newsgroup (use a local newsgroup and local 
  88. distribution to save bandwidth).  If it doesn't work see the Troubleshooting 
  89. subject below.
  90.  
  91.  
  92. Date: 29 Mar 1994 00:00:00 GMT
  93. From: Nancy McGough <nancym@ii.com>
  94. Subject: Automatic Signature - Specific Instructions for Pine
  95.  
  96. In addition to the general signature instructions above Pine users should 
  97. edit their $HOME/.pinerc file so that it contains the following:
  98.  
  99. signature-file=~/.signature
  100. feature-list=signature-at-bottom
  101.  
  102. Note that these variables should already be in your .pinerc and you
  103. will just need to remove the # comment mark (if there is one)  and 
  104. add text after the =.  If you want more than one feature in your 
  105. feature-list then list them all in one comma-separated list e.g. 
  106. ``feature-list=old-growth,signature-at-bottom''.
  107.  
  108.  
  109. Date: 29 Mar 1994 00:00:00 GMT
  110. From: Nancy McGough <nancym@ii.com>
  111. Subject: Automatic Signature - Specific Instructions for Elm
  112.  
  113. In addition to the general signature instructions above Elm users should 
  114. edit their $HOME/.elm/elmrc file so that it contains the following:
  115.  
  116. signature = ~/.signature
  117. sigdashes = ON
  118.  
  119. Note that if you want to have a different signature for local mail
  120. (i.e., addresses that don't contain a ! or @) then you can use the 
  121. localsignature and remotesignature variables instead of the signature 
  122. variable (which specifies one sig for all mail).
  123.  
  124.  
  125. Date: 29 Mar 1994 00:00:00 GMT
  126. From: Nancy McGough <nancym@ii.com>
  127. Subject: Automatic Signature - Specific Instructions for NN
  128.  
  129. In addition to the general signature instructions above NN users should 
  130. edit their $HOME/.nn/init file so that it contains the following:
  131.  
  132. set query-signature off
  133. set append-signature-mail on
  134. set append-signature-post off  
  135.  
  136. Note that the reason that you need to ``set append-signature-post off'' is 
  137. that the news transport (such as inews) automatically appends a signature 
  138. if it exists.  If you ``set append-signature-post on'' then both nn and 
  139. inews append your sig so you get two!
  140.  
  141.  
  142. Date: 29 Mar 1994 00:00:00 GMT
  143. From: Nancy McGough <nancym@ii.com>
  144. Subject: Troubleshooting Signature Problems
  145.  
  146. If the procedures above don't work, read the man pages for your newsreader, 
  147. news poster, or mailer and search for the string "signature".  There may be a 
  148. variable you need to set in order for the .signature to be appended.  
  149.  
  150. Type...                 In order to...
  151. -------                 --------------
  152. man CommandName |less   Open man pages for CommandName (elm, pine, nn, tin
  153.                         trn, Pnews, etc.) and pipe through less.  If your 
  154.                         system doesn't have less replace it with "more".
  155.  
  156. /signature              Search for first occurrence of "signature".
  157.  
  158. n                       Search for next occurrence of "signature".
  159.                         Repeat the search until you find the appropriate
  160.                         section of the manual.
  161.  
  162. u                       Page up half a screen. (This only works in less)
  163.  
  164.  
  165.  
  166. Date: 29 Mar 1994 00:00:00 GMT
  167. From: Nancy McGough <nancym@ii.com>
  168. Subject: Changing Your Default Finger Info: chfn
  169.  
  170. People around the world can find out more about you by "fingering" 
  171. you.  This is done by typing:
  172.  
  173.    finger YourEmailAddress
  174.  
  175. On many Unix systems you can change some of your default information, 
  176. such as your name, by typing the following at your Unix prompt:
  177.  
  178.    chfn
  179.  
  180. If chfn is not available you can try "passwd -f".  For more information 
  181. see the chfn, passwd, and finger man pages.
  182.  
  183.  
  184.  
  185. Date: 29 Mar 1994 00:00:00 GMT
  186. From: Nancy McGough <nancym@ii.com>
  187. Subject: Adding More to Your Finger Info: .plan & .project
  188.  
  189. The .project and .plan files, if they exist, are displayed when you 
  190. are fingered.  Setting these up is essentially the same as setting 
  191. up a .signature file (described above).
  192.  
  193. Type...                 In order to...
  194. -------                 --------------
  195. cd                      Go to your home directory.
  196.  
  197. pico .plan              Use the pico editor to create a .plan file.
  198.                         (Replace "pico" with your favorite editor.)
  199.  
  200. chmod 644 .plan         Make .plan readable by all.
  201.  
  202. ls -l .plan             Check the permission: it should say -rw-r--r--
  203.  
  204. chmod +x .              Make home directory searchable by all.
  205.  
  206. ls -ld .                Check permission of home dir: it should say drwx?-x?-x.
  207.                         The ?'s may be r's or hyphens or one of each.
  208.  
  209. ls -la                  Check permission of files in home dir.  If any are
  210.                         world or group writable (?????w??w?) you'll probably
  211.                         want to change this by doing a "chmod go-w FileName".
  212.                         For more info on changing permissions see chmod
  213.                         man pages.
  214.  
  215.  
  216. If you want a .project file follow the same procedure.  Note that only the
  217. first line of the .project is displayed (so you might as well only make
  218. it one line!).  
  219.  
  220. To test your changes finger yourself by typing the following at the Unix prompt:
  221.  
  222.     finger YourEmailAddress
  223.  
  224. To ensure that people from other systems can finger you you should ask a friend
  225. who's not on your system to finger you too.
  226.  
  227.  
  228. Date: 29 Mar 1994 00:00:00 GMT
  229. From: Nancy McGough <nancym@ii.com>
  230. Subject: Finding Out Who Fingers You
  231.  
  232. This is not always possible and when it is it's fairly complicated to
  233. set up.  For details see the news.answers article "Unix - Frequently 
  234. Asked Questions (4/7) [Frequent posting]", item "4.9) How do I keep 
  235. track of people who are fingering me?"  (This article is archived at 
  236. rtfm.mit.edu: pub/usenet/news.answers/unix-faq/faq/part4)
  237.  
  238.  
  239. Date: 29 Mar 1994 00:00:00 GMT
  240. From: Nancy McGough <nancym@ii.com>
  241. Subject: Contributing to this FAQ
  242.  
  243. If you have any corrections, additions, or new digest items to contribute 
  244. to this FAQ please mail them to me (nancym@ii.com).  I'm especially 
  245. interested in signature instructions for specific mailers and newsreaders.
  246.